home *** CD-ROM | disk | FTP | other *** search
- function mSelect(aStrChar)
- {
- this._parent.mSetCharacter(aStrChar);
- this._parent.mJumpLevel();
- }
- function mPreSelect(astrchar)
- {
- this[this.preselected].gotoAndPlay(11);
- this.preselected = astrchar;
- this[astrchar].gotoAndPlay(2);
- }
- function mPressLeft()
- {
- this.intindex--;
- if(this.intindex < 0)
- {
- this.intindex = this.arrChars.length - 1;
- }
- this.mPreSelect(this.arrChars[this.intindex]);
- }
- function mPressRight()
- {
- this.intindex = this.intindex + 1;
- if(this.intindex >= this.arrChars.length)
- {
- this.intindex = 0;
- }
- this.mPreSelect(this.arrChars[this.intindex]);
- }
- function mPressSpaceBar()
- {
- this.mSelect(this.preselected);
- }
- this.defaultchar = "bl";
- this.intindex = 2;
- this.arrChars = new Array();
- this.arrChars.push("bb");
- this.arrChars.push("bc");
- this.arrChars.push("bl");
-